home *** CD-ROM | disk | FTP | other *** search
- @ECHO OFF
- CLS
- ECHO This batch file will print the CHANGES.!!! file
- ECHO to printer port LPT1:
- ECHO Please check that the printer is on !
- ECHO Press any key to begin (Ctrl-Break to exit)....
- PAUSE
- IF NOT EXIST CHANGES.!!! GOTO :NOTFOUND
- ECHO Now printing CHANGES.!!!...
- COPY CHANGES.!!! LPT1:
- ECHO CHANGES.!!! printed...
- GOTO :END
- :NOTFOUND
- ECHO The file CHANGES.!!! was not found. Please check your disk....
- :END